home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming in Microsoft Windows with C#
/
Programacion en Microsoft Windows con C#.iso
/
Codigo
/
Introducción a Windows Forms
/
ShowForm
/
ShowForm.cs
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-01-15
|
290 b
|
15 lines
//---------------------------------------
// ShowForm.cs ⌐ 2001 by Charles Petzold
//---------------------------------------
using System.Windows.Forms;
class ShowForm
{
public static void Main()
{
Form form = new Form();
form.Show();
}
}